Version

ForEach Method

Performs the specified action on each item of the list.
Syntax
'Declaration
 
Public Sub ForEach( _
   ByVal action As Func(Of T,Boolean) _
) 
public void ForEach( 
   Func<T,bool> action
)

Parameters

action
Action that is invoked with the item as argument. If it returns true the for each continues with the next item, if it returns false the for each stops (like including a break in code).
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also